runtime.heapStatsDelta.smallFreeCount (field)

8 uses

	runtime (current package)
		metrics.go#L122: 				for i, count := range in.heapStats.smallFreeCount[1:] {
		metrics.go#L397: 		nf := uint64(a.smallFreeCount[i])
		mgcsweep.go#L669: 			atomic.Xadduintptr(&stats.smallFreeCount[spc.sizeclass()], uintptr(nfreed))
		mstats.go#L582: 		f := uint64(consStats.smallFreeCount[i])
		mstats.go#L712: 	smallFreeCount  [_NumSizeClasses]uintptr // number of frees for small objects (<=maxSmallSize)
		mstats.go#L736: 	for i := range b.smallFreeCount {
		mstats.go#L737: 		a.smallFreeCount[i] += b.smallFreeCount[i]